home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 000297_timbl@www3.cern.ch _Thu Nov 5 09:46:07 1992.msg < prev    next >
Internet Message Format  |  1994-01-24  |  2KB

  1. Return-Path: <timbl@www3.cern.ch>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA22865; Thu, 5 Nov 92 09:46:07 MET
  4. Received: by dxmint.cern.ch (dxcern) (5.57/3.14)
  5.     id AA13262; Thu, 5 Nov 92 09:58:20 +0100
  6. Received: by www3.cern.ch (NX5.67c/NX3.0S)
  7.     id AA02508; Thu, 5 Nov 92 09:55:34 +0100
  8. Date: Thu, 5 Nov 92 09:55:34 +0100
  9. From: Tim Berners-Lee <timbl@www3.cern.ch>
  10. Message-Id: <9211050855.AA02508@www3.cern.ch>
  11. Received: by NeXT.Mailer (1.87.1)
  12. Received: by NeXT Mailer (1.87.1)
  13. To: www-talk@nxoc01.cern.ch
  14. Subject: Format conversion with NeXTStep 3.0
  15. Reply-To: timbl@nxoc01.cern.ch
  16.  
  17. Here's an excerpt from the NeXT Nugget news digest, talking about
  18. aspects of NeXTStep 3.0 which developers ought to take into account.
  19. (I don't think WonderFormat is a MIME type ;-)
  20.  
  21.  
  22.  
  23. - Filter services
  24. A Filter service is a new 3.0 type of Service which has no menu item
  25. but supports the ability to convert a piece of data from one type to
  26. another.  Every application can take advantage of filter services
  27. when opening files (via +typesFilterableTo: if it can open a standard
  28. type, like RTF) and when importing data via copy/paste or dragging
  29. (via +imagePasteboardTypes).
  30.  
  31. Other applications can provide filter services:  for example, if you
  32. have some code which converts your document format [the WonderFormat]
  33. to RTFD, then you should provide this functionality as a filter
  34. service.  Another application which understands RTFD but not
  35. WonderFormat can still import WonderFormat documents and the filter
  36. service will do the work of the conversion.  The other advantage of
  37. providing a filter to ascii is that your documents then become
  38. indexable by Digital Librarian.  See the 3.0 Appkit Release Notes and
  39. the Pasteboard spec sheet for more information on:
  40. +typesFilterableTo:, +newByFilteringFile:, +newByFilteringData:,
  41. +newByFilteringTypesInPasteboard:.
  42.